-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BE] 아티클 조회수 기능을 구현한다. #1070
base: dev-be
Are you sure you want to change the base?
[BE] 아티클 조회수 기능을 구현한다. #1070
Conversation
# Conflicts: # backend/bang-ggood/src/main/java/com/bang_ggood/article/service/ArticleService.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
조회수의 정확도가 크게 중요하지 않다고 생각해서 비동기로 처리해도 괜찮을 것 같아요!
저 또한 조회수 기능은 정확도가 중요한 기능도 아니며, 이것을 보장하기 위해서 다른 성능을 할애할 부분도 아니라 생각합니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 비동기로 처리해도 괜찮을 것 같습니다!
@@ -159,6 +159,7 @@ CREATE TABLE article | |||
keyword VARCHAR(255), | |||
summary VARCHAR(255), | |||
thumbnail VARCHAR(2500), | |||
view_count BIGINT default 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
머지되면 스키마 변경사항 prod db에도 반영해주세요~
❗ Issue
✨ 구현한 기능
📢 논의하고 싶은 내용
응답 필수!! ⭐ ⭐
조회수 기능을 위해 기존에 있던 Cache 기능을 잠시 지우게 됐는데,
캐싱이 AOP라서 클래스 내 자가 호출은 적용이 안된다고 하네요.
캐싱을 유지하고 싶다면 제가 생각하는 대안은 2가지 입니다.
여러분의 생각은 어떤가요?
🎸 기타